home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / gnu / bison_1_22.lha / bison-1.22 / getopt.ch < prev    next >
Text File  |  1995-01-20  |  593b  |  46 lines

  1. Changes for GETOPT.C by Andreas Scherer, January 20, 1995.
  2.  
  3. @x l.44
  4. #include <stdio.h>
  5. @y
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9. #include <stddef.h>
  10. @z
  11.  
  12. @x l.176
  13. char *getenv ();
  14. @y
  15. @z
  16.  
  17. @x l.179
  18. my_index (str, chr)
  19.      const char *str;
  20.      int chr;
  21. @y
  22. my_index (
  23.      const char *str,
  24.      int chr)
  25. @z
  26.  
  27. @x l.227
  28. exchange (argv)
  29.      char **argv;
  30. @y
  31. exchange (
  32.      char **argv)
  33. @z
  34.  
  35. @x l.674
  36. getopt (argc, argv, optstring)
  37.      int argc;
  38.      char *const *argv;
  39.      const char *optstring;
  40. @y
  41. getopt (
  42.      int argc,
  43.      char *const *argv,
  44.      const char *optstring)
  45. @z
  46.